home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
spmate12
/
spelmate.h$
/
spelmate.h
Wrap
C/C++ Source or Header
|
1993-07-12
|
797b
|
28 lines
/* spelmate.h */
/* interface to Spelmate.dll */
/* (c), 1993 Stewart McSporran for Aciran Software */
#ifndef __SPELMATE_H
#define __SPELMATE_H
#include <windows.h> /* <windows.h> must be included for types*/
#ifdef __cplusplus
extern "C" { /* Assume C declarations for C++ */
#endif
/* Function prototypes from SpelMate.DLL */
int far _export PASCAL SpelmateInit(void);
BOOL far _export PASCAL SpellCheck(LPSTR pWord);
void far _export PASCAL AddWord(LPSTR pWord);
void far _export PASCAL IgnoreWord(LPSTR pWord);
LPSTR far _export PASCAL SuggestWord(LPSTR pWord);
void far _export PASCAL SuggestVBWord(LPSTR pWord);
void far _export PASCAL DisplayAtTop();
#ifdef __cplusplus
} /* End of extern "C" { */
#endif
#endif